home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / hypercrd / hc2_x / tcprogud.sit / picture ƒ / class.c < prev    next >
Text File  |  1990-09-06  |  596b  |  27 lines

  1. /*
  2. *   FILE:    class.c
  3. *   AUTHOR:  R.G.
  4. *   CREATED: June 25, 1990
  5. *   
  6. *   define generic class methods
  7. */
  8.  
  9. # include "class.h"
  10.  
  11. /******************************************************************
  12. *   define generic init() method
  13. ******************************************************************/
  14. boolean     Generic_Class::init(void)
  15. {
  16.     return TRUE;
  17. }
  18.  
  19. /******************************************************************
  20. *   define generic destroy() method
  21. ******************************************************************/
  22. boolean     Generic_Class::destroy(void)
  23. {
  24.     return TRUE;
  25. }
  26.  
  27.